home *** CD-ROM | disk | FTP | other *** search
/ Aminet 34 / Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso / Aminet / util / libs / DateLib.lha / DateLib / Developer / C / examples / smakefile < prev    next >
Encoding:
Makefile  |  1999-06-06  |  732 b   |  25 lines

  1. CCDEBUG   = debug=l # def DEBUG=5
  2. LNDEBUG   = debug.o
  3. DEBUGLIBS = # lib lib:debug.lib # lib:ddebug.lib
  4. OPT       = noopt
  5.  
  6.  
  7. all: datetestlib
  8.  
  9. # -----------------------------------------------------------------------------
  10.  
  11. datetestlib: datetest.c $(LNDEBUG)
  12.     sc $(OPT) strict ansi commentnest noicons math=standard \
  13.     strmer memsize=huge def=LIBTEST $(CCDEBUG) \
  14.     pname=datetestlib link datetest.c $(LNDEBUG) $(DEBUGLIBS)
  15.  
  16. debug.o: debug.c debug.h system.h
  17.     sc $(OPT) strict ansi commentnest noicons nolink memsize=huge \
  18.     math=standard data=near strmer idir=/ $(CCDEBUG) \
  19.     objname=debug.o debug.c $(CCDEBUG)
  20.  
  21. # -----------------------------------------------------------------------------
  22.  
  23. clean:
  24.     delete \#?.o \#?.lnk datetestlib
  25.